home *** CD-ROM | disk | FTP | other *** search
/ Steven Spielberg's Director's Chair / Steven Spielberg's Director's Chair (1996)(Random House)(Disc 1 of 3)[Mac-PC].iso / pc / support / util / clockfix.doc < prev    next >
Text File  |  1995-06-19  |  1KB  |  30 lines

  1.  Copyright (C) 1994 Knowledge Adventure, Inc.  All Rights Reserved
  2.  Portions Copyright (C) 1994 Number Nine Computer Corporation
  3.  
  4.  Written by Lee Hasiuk, Rochester, NY, except where otherwise
  5.  noted.
  6.  
  7.  Revision History:
  8.  
  9.  October 22, 1994   LH   Initial version.
  10.  
  11.  This small TSR program is intended to fix a problematic interaction
  12.  between the #9 GXE 64 Pro video card and a series of DOS based
  13.  products from Knowledge Adventure.  The problem that it addresses
  14.  is that these products run in a 360 x 480 x 256 color mode, which
  15.  is not a standard DOS/VGA video mode.  KA products set up this mode
  16.  by starting with mode 13h (320 x 200 x 256 colors) and tweaking
  17.  the CRT controller registers.  Mostly, this works on the #9 video card
  18.  with one exception: setting the dot clock to 28 Mhz.  The #9 card
  19.  can't be set to use a 28 Mhz dot clock in the same way as a VGA
  20.  compatible card; it requires special purpose code.
  21.  
  22.  The algorithm this code uses is as follows:
  23.  1) Check for #9 GXE 64 pro.
  24.  2) Check for TSR already installed.
  25.  3) Hook interrupt 10h (Video BIOS) and 21h (DOS services).
  26.  4) When video mode set (int 10h function 0) to mode 13h is seen, set flag.
  27.  5) On next interrupt 21h call, if flag is set check dot clock register on
  28.     VGA.  If it is set to 28 Mhz, execute special purpose code to set the
  29.     dot clock on the GXE 64 Pro.
  30.